home *** CD-ROM | disk | FTP | other *** search
- if(_root.Lives > 0)
- {
- _root.lifebar.nextFrame();
- _root.fuel = _root.fuellevel;
- _root.ship._x = _root.land.spad._x + 277;
- _root.ship._y = _root.land.spad._y + 205;
- _root.ship.dead = false;
- _root.ship.rotate = 0;
- _root.ship.landed = true;
- _root.ship.keydownright = false;
- _root.ship.keydownleft = false;
- _root.ship.keydownup = false;
- _root.ship.keydowndown = false;
- _root.ship.keydownfire = false;
- _root.ship.gotoAndStop(1);
- }
- else if(_root.Lives == 0)
- {
- _root.ranking = "Bad";
- _root.gotoAndPlay("Gameover");
- }
- stop();
-